home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh -e
-
- # Remove a no-longer used conffile (from http://wiki.debian.org/DpkgConffileHandling)
- rm_conffile() {
- PKGNAME="$1"
- CONFFILE="$2"
- if [ -e "$CONFFILE" ]; then
- md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`"
- old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\'^ $CONFFILE[[:space:]]'{s/ obsolete$//;s/.* //p}\"`"
- if [ "$md5sum" != "$old_md5sum" ]; then
- echo "Obsolete conffile $CONFFILE has been modified by you."
- echo "Saving as $CONFFILE.dpkg-bak ..."
- mv -f "$CONFFILE" "$CONFFILE".dpkg-bak
- else
- echo "Removing obsolete conffile $CONFFILE ..."
- rm -f "$CONFFILE"
- fi
- fi
- }
-
- if [ "$1" = "upgrade" -o "$1" = "remove" ]; then
- # Remove any previously installed acpi files
- rm -f /etc/acpi/events/lm_ac_adapter
- rm -f /etc/acpi/events/lm_battery
- rm -f /etc/acpi/events/lm_lid
-
- rm -f /etc/acpi/actions/lm_ac_adapter.sh
- rm -f /etc/acpi/actions/lm_battery.sh
- rm -f /etc/acpi/actions/lm_lid.sh
- rm -f /etc/apm/event.d/laptop-mode
- fi
-
- if dpkg --compare-versions "$2" lt-nl 1.47-1ubuntu2; then
- rm_conffile laptop-mode-tools /etc/pm/sleep.d/99laptop-mode
- fi
-
-
-
-